home *** CD-ROM | disk | FTP | other *** search
/ Aminet 37 / Aminet 37 (2000)(Schatztruhe)[!][Jun 2000].iso / Aminet / dev / asm / Tandem2.68.lha / Tandem / Teaching / 11.asm < prev    next >
Assembly Source File  |  2000-04-02  |  281b  |  9 lines

  1. * 11.asm   Demonstate a DBRA loop       version 0.00    1.9.97
  2.  
  3.  move.l #0,d0
  4.  move.w #9,d1 ;D1 is the control variable: see line 0006. Loops D1-1 times
  5. Loop:
  6.  add.l #10,d0
  7.  dbra d1,Loop ;decrement D1, go to loop if D1<>$FFFF
  8.  rts          ;if D1=$FFFF, falls through to this line
  9.